home *** CD-ROM | disk | FTP | other *** search
- /* *** Quit.ced 1.00 ***
- Bans Event!-Clock and close current CED-File
- This script can be assigned to the key you use for closing the
- current CED-File. It is a workaround for CED since CED has problems
- with visitor windows when the screen is closed.
- */
-
- address "rexx_ced"
-
- /* survive missing Event!, string results */
- options failat 100
- options results
- /* Is this the last CED-view? => Ban ClockWindow */
- status 66
- IF result==1 THEN do
- address "EVENT!" BAN 5
- address command 'wait 1'
- end
-
- QUIT
-